home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / Converters / pcxlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-15  |  264 b   |  15 lines

  1. #ifndef __PCXLIB__
  2. #define __PCXLIB__
  3.  
  4. id pcxread(NXStream *ifp);
  5. void pcxwrite(NXStream         *ifp, 
  6.             unsigned char     *data, 
  7.             unsigned char        r[256],
  8.             unsigned char        g[256],
  9.             unsigned char        b[256],
  10.             int                width,
  11.             int                height,
  12.             int                colors);
  13.  
  14. #endif
  15.